home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / srctt26 / timetrac.dpr < prev    next >
Text File  |  1996-04-08  |  471b  |  23 lines

  1. program TimeTrac;
  2.  
  3. uses
  4.   Forms,
  5.   Timeunit in 'TIMEUNIT.PAS' {MainForm},
  6.   About in 'ABOUT.PAS' {AboutBox},
  7.   Presetun in 'PRESETUN.PAS' {BtnRightDlg},
  8.   Freehrs in 'FREEHRS.PAS' {BtnBottomDlg},
  9.   Previnst in 'PREVINST.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   if HPrevInst <> 0 then
  15.     begin
  16.       ActivatePreviousInstance;
  17.       Exit;
  18.     end;
  19.   Application.Title := 'OnLineTime Tracker';
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   Application.Run;
  22. end.
  23.